[
  { "keys": ["command+e"],
    "command": "insert_snippet",
    "args": {"contents": "<a href=\"#\">${0:$SELECTION}</a>" }
   },
  { "keys": ["command+q"],
    "command": "insert_snippet",
    "args": {"contents": "<p>${0:$SELECTION}</p>" }
  },
  { "keys": ["command+w"],
    "command": "insert_snippet",
    "args": {"contents": "<li>${0:$SELECTION}</li>" }
  },
    { "keys": ["command+u"],
    "command": "insert_snippet",
    "args": {"contents": "<ul>${0:$SELECTION}</ul>" }
  },
  { "keys": ["command+1"],
    "command": "insert_snippet",
    "args": {"contents": "<h1>${0:$SELECTION}</h1>" }
  },
  { "keys": ["command+2"],
    "command": "insert_snippet",
    "args": {"contents": "<h2>${0:$SELECTION}</h2>" }
  },
  { "keys": ["command+3"],
    "command": "insert_snippet",
    "args": {"contents": "<h3>${0:$SELECTION}</h3>" }
  },
  { "keys": ["command+y"],
    "command": "insert_snippet",
    "args": {"contents": "<span>${0:$SELECTION}</span>" }
  },
  { "keys": ["command+r"],
    "command": "insert_snippet",
    "args": {"contents": "<div>${0:$SELECTION}</div>" }
  },
  { "keys": ["command+t"],
    "command": "insert_snippet",
    "args": {"contents": "<strong>${0:$SELECTION}</strong>" }
  },
  { "keys": ["shift+enter"],
    "command": "insert_snippet",
    "args": {"contents": "<br />\n${0:$SELECTION}" }
  },
  { "keys": ["shift+space"],
    "command": "insert_snippet",
    "args": {"contents": "&nbsp;${0:$SELECTION}" }
  },
  { "keys": ["command+shift+e"],
    "command": "insert_snippet",
    "args": {"contents": "[${0:$SELECTION}](#)" }
  },
  { "keys": ["command+shift+w"],
    "command": "insert_snippet",
    "args": {"contents": "* ${0:$SELECTION}" }
  },
  { "keys": ["command+shift+1"],
    "command": "insert_snippet",
    "args": {"contents": "# ${0:$SELECTION}" }
  },
  { "keys": ["command+shift+2"],
    "command": "insert_snippet",
    "args": {"contents": "## ${0:$SELECTION}" }
  },
  { "keys": ["command+shift+3"],
    "command": "insert_snippet",
    "args": {"contents": "### ${0:$SELECTION}" }
  },
  { "keys": ["command+shift+t"],
    "command": "insert_snippet",
    "args": {"contents": "**${0:$SELECTION}**" }
  },
  { "keys": ["command+shift+enter"],
    "command": "insert_snippet",
    "args": {"contents": "  \n${0:$SELECTION}" }
  },
  { "keys": ["command+shift+r"],
    "command": "reindent" ,
    "args": { "single_line": false }
  },
  { "keys": ["alt+m"],
    "command": "markdown_preview",
    "args": {"target": "browser", "parser":"markdown"}
  }
]
